home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / k3bdefaultexternalprograms.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-05-27  |  2.7 KB  |  144 lines

  1. /* 
  2.  *
  3.  * $Id: k3bdefaultexternalprograms.h 623768 2007-01-15 13:33:55Z trueg $
  4.  * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
  5.  *
  6.  * This file is part of the K3b project.
  7.  * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * See the file "COPYING" for the exact licensing terms.
  14.  */
  15.  
  16.  
  17.  
  18. #ifndef _K3B_DEFAULT_EXTERNAL_BIN_PROGRAMS_H_
  19. #define _K3B_DEFAULT_EXTERNAL_BIN_PROGRAMS_H_
  20.  
  21. #include "k3bexternalbinmanager.h"
  22. #include "k3b_export.h"
  23. class K3bExternalBinManager;
  24.  
  25. namespace K3b
  26. {
  27.   LIBK3B_EXPORT void addDefaultPrograms( K3bExternalBinManager* );
  28.   LIBK3B_EXPORT void addTranscodePrograms( K3bExternalBinManager* );
  29.   LIBK3B_EXPORT void addVcdimagerPrograms( K3bExternalBinManager* );
  30. }
  31.  
  32.  
  33. class LIBK3B_EXPORT K3bCdrecordProgram : public K3bExternalProgram
  34. {
  35.  public:
  36.   K3bCdrecordProgram( bool dvdPro );
  37.  
  38.   bool scan( const QString& );
  39.  
  40.  private:
  41.   bool m_dvdPro;
  42. };
  43.  
  44.  
  45. class LIBK3B_EXPORT K3bMkisofsProgram : public K3bExternalProgram
  46. {
  47.  public:
  48.   K3bMkisofsProgram();
  49.  
  50.   bool scan( const QString& );
  51. };
  52.  
  53.  
  54. class LIBK3B_EXPORT K3bReadcdProgram : public K3bExternalProgram
  55. {
  56.  public:
  57.   K3bReadcdProgram();
  58.  
  59.   bool scan( const QString& );
  60. };
  61.  
  62.  
  63. class LIBK3B_EXPORT K3bCdrdaoProgram : public K3bExternalProgram
  64. {
  65.  public:
  66.   K3bCdrdaoProgram();
  67.  
  68.   bool scan( const QString& );
  69. };
  70.  
  71.  
  72. class LIBK3B_EXPORT K3bTranscodeProgram : public K3bExternalProgram
  73. {
  74.  public:
  75.   K3bTranscodeProgram( const QString& transcodeProgram );
  76.  
  77.   bool scan( const QString& );
  78.  
  79.   // no user parameters (yet)
  80.   bool supportsUserParameters() const { return false; }
  81.  
  82.  private:
  83.   QString m_transcodeProgram;
  84. };
  85.  
  86.  
  87. class LIBK3B_EXPORT K3bVcdbuilderProgram : public K3bExternalProgram
  88. {
  89.  public:
  90.   K3bVcdbuilderProgram( const QString& );
  91.  
  92.   bool scan( const QString& );
  93.  
  94.  private:
  95.   QString m_vcdbuilderProgram;
  96. };
  97.  
  98.  
  99. class LIBK3B_EXPORT K3bNormalizeProgram : public K3bExternalProgram
  100. {
  101.  public:
  102.   K3bNormalizeProgram();
  103.  
  104.   bool scan( const QString& );
  105. };
  106.  
  107.  
  108. class LIBK3B_EXPORT K3bGrowisofsProgram : public K3bExternalProgram
  109. {
  110.  public:
  111.   K3bGrowisofsProgram();
  112.  
  113.   bool scan( const QString& );
  114. };
  115.  
  116.  
  117. class LIBK3B_EXPORT K3bDvdformatProgram : public K3bExternalProgram
  118. {
  119.  public:
  120.   K3bDvdformatProgram();
  121.  
  122.   bool scan( const QString& );
  123. };
  124.  
  125.  
  126. class LIBK3B_EXPORT K3bDvdBooktypeProgram : public K3bExternalProgram
  127. {
  128.  public:
  129.   K3bDvdBooktypeProgram();
  130.  
  131.   bool scan( const QString& );
  132. };
  133.  
  134.  
  135. class LIBK3B_EXPORT K3bCdda2wavProgram : public K3bExternalProgram
  136. {
  137.  public:
  138.   K3bCdda2wavProgram();
  139.  
  140.   bool scan( const QString& );
  141. };
  142.  
  143. #endif
  144.